-
Notifications
You must be signed in to change notification settings - Fork 4
RDKEMW-3526 - VRR support Devicesettings #51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
ds/hdmiIn.cpp
Outdated
|
|
||
| void HdmiInput::setVRRSupport(int iHdmiPort, bool vrrSupport) | ||
| { | ||
| printf ("HdmiInput::setVRRSupport \r\n"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We dont need two print in same function
| std::string _VRRSupport("TRUE"); | ||
| try { | ||
| _VRRSupport = device::HostPersistence::getInstance().getProperty("HDMI0.vrrEnable"); | ||
| if(_VRRSupport == "TRUE") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_VRRSupport is initialized to true so why we checking here for TRUE which will always be the success case
rpc/cli/dsHdmiIn.c
Outdated
| (void *)¶m, | ||
| sizeof(param)); | ||
|
|
||
| printf("[cli]: dsSetVRRSupport port :%d, vrrsupport :%d\n",param.iHdmiPort,param.vrrSupport); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reduce logs as we dont need to log at every layer
No description provided.